home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / patch / pch.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  33KB  |  1,305 lines

  1. /* $Header: pch.c,v 2.0.1.7 88/06/03 15:13:28 lwall Locked $
  2.  *
  3.  * $Log:    pch.c,v $
  4.  * Revision 2.0.2.0  90/05/01  22:17:51  davison
  5.  * patch12u: unidiff support added
  6.  *
  7.  * Revision 2.0.1.7  88/06/03  15:13:28  lwall
  8.  * patch10: Can now find patches in shar scripts.
  9.  * patch10: Hunks that swapped and then swapped back could core dump.
  10.  * 
  11.  * Revision 2.0.1.6  87/06/04  16:18:13  lwall
  12.  * pch_swap didn't swap p_bfake and p_efake.
  13.  * 
  14.  * Revision 2.0.1.5  87/01/30  22:47:42  lwall
  15.  * Improved responses to mangled patches.
  16.  * 
  17.  * Revision 2.0.1.4  87/01/05  16:59:53  lwall
  18.  * New-style context diffs caused double call to free().
  19.  * 
  20.  * Revision 2.0.1.3  86/11/14  10:08:33  lwall
  21.  * Fixed problem where a long pattern wouldn't grow the hunk.
  22.  * Also restored p_input_line when backtracking so error messages are right.
  23.  * 
  24.  * Revision 2.0.1.2  86/11/03  17:49:52  lwall
  25.  * New-style delete triggers spurious assertion error.
  26.  * 
  27.  * Revision 2.0.1.1  86/10/29  15:52:08  lwall
  28.  * Could falsely report new-style context diff.
  29.  * 
  30.  * Revision 2.0  86/09/17  15:39:37  lwall
  31.  * Baseline for netwide release.
  32.  * 
  33.  */
  34.  
  35. #include "EXTERN.h"
  36. #include "common.h"
  37. #include "util.h"
  38. #include "INTERN.h"
  39. #include "pch.h"
  40.  
  41. /* Patch (diff listing) abstract type. */
  42.  
  43. static long p_filesize;            /* size of the patch file */
  44. static LINENUM p_first;            /* 1st line number */
  45. static LINENUM p_newfirst;        /* 1st line number of replacement */
  46. static LINENUM p_ptrn_lines;        /* # lines in pattern */
  47. static LINENUM p_repl_lines;        /* # lines in replacement text */
  48. static LINENUM p_end = -1;        /* last line in hunk */
  49. static LINENUM p_max;            /* max allowed value of p_end */
  50. static LINENUM p_context = 3;        /* # of context lines */
  51. static LINENUM p_input_line = 0;    /* current line # from patch file */
  52. static char **p_line = Null(char**);    /* the text of the hunk */
  53. static short *p_len = Null(short*);    /* length of each line */
  54. static char *p_char = Nullch;        /* +, -, and ! */
  55. static int hunkmax = INITHUNKMAX;    /* size of above arrays to begin with */
  56. static int p_indent;            /* indent to patch */
  57. static LINENUM p_base;            /* where to intuit this time */
  58. static LINENUM p_bline;            /* line # of p_base */
  59. static LINENUM p_start;            /* where intuit found a patch */
  60. static LINENUM p_sline;            /* and the line number for it */
  61. static LINENUM p_hunk_beg;        /* line number of current hunk */
  62. static LINENUM p_efake = -1;        /* end of faked up lines--don't free */
  63. static LINENUM p_bfake = -1;        /* beg of faked up lines */
  64.  
  65. /* Prepare to look for the next patch in the patch file. */
  66.  
  67. void
  68. re_patch()
  69. {
  70.     p_first = Nulline;
  71.     p_newfirst = Nulline;
  72.     p_ptrn_lines = Nulline;
  73.     p_repl_lines = Nulline;
  74.     p_end = (LINENUM)-1;
  75.     p_max = Nulline;
  76.     p_indent = 0;
  77. }
  78.  
  79. /* Open the patch file at the beginning of time. */
  80.  
  81. void
  82. open_patch_file(filename)
  83. char *filename;
  84. {
  85.     if (filename == Nullch || !*filename || strEQ(filename, "-")) {
  86.     pfp = fopen(TMPPATNAME, "w");
  87.     if (pfp == Nullfp)
  88.         fatal2("patch: can't create %s.\n", TMPPATNAME);
  89.     while (fgets(buf, sizeof buf, stdin) != Nullch)
  90.         fputs(buf, pfp);
  91.     Fclose(pfp);
  92.     filename = TMPPATNAME;
  93.     }
  94.     pfp = fopen(filename, "r");
  95.     if (pfp == Nullfp)
  96.     fatal2("patch file %s not found\n", filename);
  97.     Fstat(fileno(pfp), &filestat);
  98.     p_filesize = filestat.st_size;
  99.     next_intuit_at(0L,1L);            /* start at the beginning */
  100.     set_hunkmax();
  101. }
  102.  
  103. /* Make sure our dynamically realloced tables are malloced to begin with. */
  104.  
  105. void
  106. set_hunkmax()
  107. {
  108. #ifndef lint
  109.     if (p_line == Null(char**))
  110.     p_line = (char**) malloc((MEM)hunkmax * sizeof(char *));
  111.     if (p_len == Null(short*))
  112.     p_len  = (short*) malloc((MEM)hunkmax * sizeof(short));
  113. #endif
  114.     if (p_char == Nullch)
  115.     p_char = (char*)  malloc((MEM)hunkmax * sizeof(char));
  116. }
  117.  
  118. /* Enlarge the arrays containing the current hunk of patch. */
  119.  
  120. void
  121. grow_hunkmax()
  122. {
  123.     hunkmax *= 2;
  124.     /* 
  125.      * Note that on most systems, only the p_line array ever gets fresh memory
  126.      * since p_len can move into p_line's old space, and p_char can move into
  127.      * p_len's old space.  Not on PDP-11's however.  But it doesn't matter.
  128.      */
  129.     assert(p_line != Null(char**) && p_len != Null(short*) && p_char != Nullch);
  130. #ifndef lint
  131.     p_line = (char**) realloc((char*)p_line, (MEM)hunkmax * sizeof(char *));
  132.     p_len  = (short*) realloc((char*)p_len,  (MEM)hunkmax * sizeof(short));
  133.     p_char = (char*)  realloc((char*)p_char, (MEM)hunkmax * sizeof(char));
  134. #endif
  135.     if (p_line != Null(char**) && p_len != Null(short*) && p_char != Nullch)
  136.     return;
  137.     if (!using_plan_a)
  138.     fatal1("patch: out of memory (grow_hunkmax)\n");
  139.     out_of_mem = TRUE;        /* whatever is null will be allocated again */
  140.                 /* from within plan_a(), of all places */
  141. }
  142.  
  143. /* True if the remainder of the patch file contains a diff of some sort. */
  144.  
  145. bool
  146. there_is_another_patch()
  147. {
  148.     if (p_base != 0L && p_base >= p_filesize) {
  149.     if (verbose)
  150.         say1("done\n");
  151.     return FALSE;
  152.     }
  153.     if (verbose)
  154.     say1("Hmm...");
  155.     diff_type = intuit_diff_type();
  156.     if (!diff_type) {
  157.     if (p_base != 0L) {
  158.         if (verbose)
  159.         say1("  Ignoring the trailing garbage.\ndone\n");
  160.     }
  161.     else
  162.         say1("  I can't seem to find a patch in there anywhere.\n");
  163.     return FALSE;
  164.     }
  165.     if (verbose)
  166.     say3("  %sooks like %s to me...\n",
  167.         (p_base == 0L ? "L" : "The next patch l"),
  168.         diff_type == UNI_DIFF ? "a unified diff" :
  169.         diff_type == CONTEXT_DIFF ? "a context diff" :
  170.         diff_type == NEW_CONTEXT_DIFF ? "a new-style context diff" :
  171.         diff_type == NORMAL_DIFF ? "a normal diff" :
  172.         "an ed script" );
  173.     if (p_indent && verbose)
  174.     say3("(Patch is indented %d space%s.)\n", p_indent, p_indent==1?"":"s");
  175.     skip_to(p_start,p_sline);
  176.     while (filearg[0] == Nullch) {
  177.     if (force) {
  178.         say1("No file to patch.  Skipping...\n");
  179.         filearg[0] = savestr(bestguess);
  180.         return TRUE;
  181.     }
  182.     ask1("File to patch: ");
  183.     if (*buf != '\n') {
  184.         if (bestguess)
  185.         free(bestguess);
  186.         bestguess = savestr(buf);
  187.         filearg[0] = fetchname(buf, 0, FALSE);
  188.     }
  189.     if (filearg[0] == Nullch) {
  190.         ask1("No file found--skip this patch? [n] ");
  191.         if (*buf != 'y') {
  192.         continue;
  193.         }
  194.         if (verbose)
  195.         say1("Skipping patch...\n");
  196.         filearg[0] = fetchname(bestguess, 0, TRUE);
  197.         skip_rest_of_patch = TRUE;
  198.         return TRUE;
  199.     }
  200.     }
  201.     return TRUE;
  202. }
  203.  
  204. /* Determine what kind of diff is in the remaining part of the patch file. */
  205.  
  206. int
  207. intuit_diff_type()
  208. {
  209.     Reg4 long this_line = 0;
  210.     Reg5 long previous_line;
  211.     Reg6 long first_command_line = -1;
  212.     long fcl_line;
  213.     Reg7 bool last_line_was_command = FALSE;
  214.     Reg8 bool this_is_a_command = FALSE;
  215.     Reg9 bool stars_last_line = FALSE;
  216.     Reg10 bool stars_this_line = FALSE;
  217.     Reg3 int indent;
  218.     Reg1 char *s;
  219.     Reg2 char *t;
  220.     char *indtmp = Nullch;
  221.     char *oldtmp = Nullch;
  222.     char *newtmp = Nullch;
  223.     char *indname = Nullch;
  224.     char *oldname = Nullch;
  225.     char *newname = Nullch;
  226.     Reg11 int retval;
  227.     bool no_filearg = (filearg[0] == Nullch);
  228.  
  229.     ok_to_create_file = FALSE;
  230.     Fseek(pfp, p_base, 0);
  231.     p_input_line = p_bline - 1;
  232.     for (;;) {
  233.     previous_line = this_line;
  234.     last_line_was_command = this_is_a_command;
  235.     stars_last_line = stars_this_line;
  236.     this_line = ftell(pfp);
  237.     indent = 0;
  238.     p_input_line++;
  239.     if (fgets(buf, sizeof buf, pfp) == Nullch) {
  240.         if (first_command_line >= 0L) {
  241.                     /* nothing but deletes!? */
  242.         p_start = first_command_line;
  243.         p_sline = fcl_line;
  244.         retval = ED_DIFF;
  245.         goto scan_exit;
  246.         }
  247.         else {
  248.         p_start = this_line;
  249.         p_sline = p_input_line;
  250.         retval = 0;
  251.         goto scan_exit;
  252.         }
  253.     }
  254.     for (s = buf; *s == ' ' || *s == '\t' || *s == 'X'; s++) {
  255.         if (*s == '\t')
  256.         indent += 8 - (indent % 8);
  257.         else
  258.         indent++;
  259.     }
  260.     for (t=s; isdigit(*t) || *t == ','; t++) ; 
  261.     this_is_a_command = (isdigit(*s) &&
  262.       (*t == 'd' || *t == 'c' || *t == 'a') );
  263.     if (first_command_line < 0L && this_is_a_command) { 
  264.         first_command_line = this_line;
  265.         fcl_line = p_input_line;
  266.         p_indent = indent;        /* assume this for now */
  267.     }
  268.     if (!stars_last_line && strnEQ(s, "*** ", 4))
  269.         oldtmp = savestr(s+4);
  270.     else if (strnEQ(s, "--- ", 4))
  271.         newtmp = savestr(s+4);
  272.     else if (strnEQ(s, "+++ ", 4))
  273.         oldtmp = savestr(s+4);    /* pretend it is the old name */
  274.     else if (strnEQ(s, "Index:", 6))
  275.         indtmp = savestr(s+6);
  276.     else if (strnEQ(s, "Prereq:", 7)) {
  277.         for (t=s+7; isspace(*t); t++) ;
  278.         revision = savestr(t);
  279.         for (t=revision; *t && !isspace(*t); t++) ;
  280.         *t = '\0';
  281.         if (!*revision) {
  282.         free(revision);
  283.         revision = Nullch;
  284.         }
  285.     }
  286.     if ((!diff_type || diff_type == ED_DIFF) &&
  287.       first_command_line >= 0L &&
  288.       strEQ(s, ".\n") ) {
  289.         p_indent = indent;
  290.         p_start = first_command_line;
  291.         p_sline = fcl_line;
  292.         retval = ED_DIFF;
  293.         goto scan_exit;
  294.     }
  295.     if ((!diff_type || diff_type == UNI_DIFF) && strnEQ(s, "@@ -", 4)) {
  296.         if (!atol(s+3))
  297.         ok_to_create_file = TRUE;
  298.         p_indent = indent;
  299.         p_start = this_line;
  300.         p_sline = p_input_line;
  301.         retval = UNI_DIFF;
  302.         goto scan_exit;
  303.     }
  304.     stars_this_line = strnEQ(s, "********", 8);
  305.     if ((!diff_type || diff_type == CONTEXT_DIFF) && stars_last_line &&
  306.          strnEQ(s, "*** ", 4)) {
  307.         if (!atol(s+4))
  308.         ok_to_create_file = TRUE;
  309.         /* if this is a new context diff the character just before */
  310.         /* the newline is a '*'. */
  311.         while (*s != '\n')
  312.         s++;
  313.         p_indent = indent;
  314.         p_start = previous_line;
  315.         p_sline = p_input_line - 1;
  316.         retval = (*(s-1) == '*' ? NEW_CONTEXT_DIFF : CONTEXT_DIFF);
  317.         goto scan_exit;
  318.     }
  319.     if ((!diff_type || diff_type == NORMAL_DIFF) && 
  320.       last_line_was_command &&
  321.       (strnEQ(s, "< ", 2) || strnEQ(s, "> ", 2)) ) {
  322.         p_start = previous_line;
  323.         p_sline = p_input_line - 1;
  324.         p_indent = indent;
  325.         retval = NORMAL_DIFF;
  326.         goto scan_exit;
  327.     }
  328.     }
  329.   scan_exit:
  330.     if (no_filearg) {
  331.     if (indtmp != Nullch)
  332.         indname = fetchname(indtmp, strippath, ok_to_create_file);
  333.     if (oldtmp != Nullch)
  334.         oldname = fetchname(oldtmp, strippath, ok_to_create_file);
  335.     if (newtmp != Nullch)
  336.         newname = fetchname(newtmp, strippath, ok_to_create_file);
  337.     if (oldname && newname) {
  338.         if (strlen(oldname) < strlen(newname))
  339.         filearg[0] = savestr(oldname);
  340.         else
  341.         filearg[0] = savestr(newname);
  342.     }
  343.     else if (oldname)
  344.         filearg[0] = savestr(oldname);
  345.     else if (newname)
  346.         filearg[0] = savestr(newname);
  347.     else if (indname)
  348.         filearg[0] = savestr(indname);
  349.     }
  350.     if (bestguess) {
  351.     free(bestguess);
  352.     bestguess = Nullch;
  353.     }
  354.     if (filearg[0] != Nullch)
  355.     bestguess = savestr(filearg[0]);
  356.     else if (indtmp != Nullch)
  357.     bestguess = fetchname(indtmp, strippath, TRUE);
  358.     else {
  359.     if (oldtmp != Nullch)
  360.         oldname = fetchname(oldtmp, strippath, TRUE);
  361.     if (newtmp != Nullch)
  362.         newname = fetchname(newtmp, strippath, TRUE);
  363.     if (oldname && newname) {
  364.         if (strlen(oldname) < strlen(newname))
  365.         bestguess = savestr(oldname);
  366.         else
  367.         bestguess = savestr(newname);
  368.     }
  369.     else if (oldname)
  370.         bestguess = savestr(oldname);
  371.     else if (newname)
  372.         bestguess = savestr(newname);
  373.     }
  374.     if (indtmp != Nullch)
  375.     free(indtmp);
  376.     if (oldtmp != Nullch)
  377.     free(oldtmp);
  378.     if (newtmp != Nullch)
  379.     free(newtmp);
  380.     if (indname != Nullch)
  381.     free(indname);
  382.     if (oldname != Nullch)
  383.     free(oldname);
  384.     if (newname != Nullch)
  385.     free(newname);
  386.     return retval;
  387. }
  388.  
  389. /* Remember where this patch ends so we know where to start up again. */
  390.  
  391. void
  392. next_intuit_at(file_pos,file_line)
  393. long file_pos;
  394. long file_line;
  395. {
  396.     p_base = file_pos;
  397.     p_bline = file_line;
  398. }
  399.  
  400. /* Basically a verbose fseek() to the actual diff listing. */
  401.  
  402. void
  403. skip_to(file_pos,file_line)
  404. long file_pos;
  405. long file_line;
  406. {
  407.     char *ret;
  408.  
  409.     assert(p_base <= file_pos);
  410.     if (verbose && p_base < file_pos) {
  411.     Fseek(pfp, p_base, 0);
  412.     say1("The text leading up to this was:\n--------------------------\n");
  413.     while (ftell(pfp) < file_pos) {
  414.         ret = fgets(buf, sizeof buf, pfp);
  415.         assert(ret != Nullch);
  416.         say2("|%s", buf);
  417.     }
  418.     say1("--------------------------\n");
  419.     }
  420.     else
  421.     Fseek(pfp, file_pos, 0);
  422.     p_input_line = file_line - 1;
  423. }
  424.  
  425. /* Make this a function for better debugging.  */
  426. static void
  427. malformed ()
  428. {
  429.     fatal3("Malformed patch at line %ld: %s", p_input_line, buf);
  430.         /* about as informative as "Syntax error" in C */
  431. }
  432.  
  433. /* True if there is more of the current diff listing to process. */
  434.  
  435. bool
  436. another_hunk()
  437. {
  438.     Reg1 char *s;
  439.     Reg8 char *ret;
  440.     Reg2 int context = 0;
  441.  
  442.     while (p_end >= 0) {
  443.     if (p_end == p_efake)
  444.         p_end = p_bfake;        /* don't free twice */
  445.     else
  446.         free(p_line[p_end]);
  447.     p_end--;
  448.     }
  449.     assert(p_end == -1);
  450.     p_efake = -1;
  451.  
  452.     p_max = hunkmax;            /* gets reduced when --- found */
  453.     if (diff_type == CONTEXT_DIFF || diff_type == NEW_CONTEXT_DIFF) {
  454.     long line_beginning = ftell(pfp);
  455.                     /* file pos of the current line */
  456.     LINENUM repl_beginning = 0;    /* index of --- line */
  457.     Reg4 LINENUM fillcnt = 0;    /* #lines of missing ptrn or repl */
  458.     Reg5 LINENUM fillsrc;        /* index of first line to copy */
  459.     Reg6 LINENUM filldst;        /* index of first missing line */
  460.     bool ptrn_spaces_eaten = FALSE;    /* ptrn was slightly misformed */
  461.     Reg9 bool repl_could_be_missing = TRUE;
  462.                     /* no + or ! lines in this hunk */
  463.     bool repl_missing = FALSE;    /* we are now backtracking */
  464.     long repl_backtrack_position = 0;
  465.                     /* file pos of first repl line */
  466.     LINENUM repl_patch_line;    /* input line number for same */
  467.     Reg7 LINENUM ptrn_copiable = 0;
  468.                     /* # of copiable lines in ptrn */
  469.  
  470.     ret = pgets(buf, sizeof buf, pfp);
  471.     p_input_line++;
  472.     if (ret == Nullch || strnNE(buf, "********", 8)) {
  473.         next_intuit_at(line_beginning,p_input_line);
  474.         return FALSE;
  475.     }
  476.     p_context = 100;
  477.     p_hunk_beg = p_input_line + 1;
  478.     while (p_end < p_max) {
  479.         line_beginning = ftell(pfp);
  480.         ret = pgets(buf, sizeof buf, pfp);
  481.         p_input_line++;
  482.         if (ret == Nullch) {
  483.         if (p_max - p_end < 4)
  484.             Strcpy(buf, "  \n");  /* assume blank lines got chopped */
  485.         else {
  486.             if (repl_beginning && repl_could_be_missing) {
  487.             repl_missing = TRUE;
  488.             goto hunk_done;
  489.             }
  490.             fatal1("Unexpected end of file in patch.\n");
  491.         }
  492.         }
  493.         p_end++;
  494.         assert(p_end < hunkmax);
  495.         p_char[p_end] = *buf;
  496. #ifdef zilog
  497.         p_line[(short)p_end] = Nullch;
  498. #else
  499.         p_line[p_end] = Nullch;
  500. #endif
  501.         switch (*buf) {
  502.         case '*':
  503.         if (strnEQ(buf, "********", 8)) {
  504.             if (repl_beginning && repl_could_be_missing) {
  505.             repl_missing = TRUE;
  506.             goto hunk_done;
  507.             }
  508.             else
  509.             fatal2("Unexpected end of hunk at line %ld.\n",
  510.                 p_input_line);
  511.         }
  512.         if (p_end != 0) {
  513.             if (repl_beginning && repl_could_be_missing) {
  514.             repl_missing = TRUE;
  515.             goto hunk_done;
  516.             }
  517.             fatal3("Unexpected *** at line %ld: %s", p_input_line, buf);
  518.         }
  519.         context = 0;
  520.         p_line[p_end] = savestr(buf);
  521.         if (out_of_mem) {
  522.             p_end--;
  523.             return FALSE;
  524.         }
  525.         for (s=buf; *s && !isdigit(*s); s++) ;
  526.         if (!*s)
  527.             malformed ();
  528.         if (strnEQ(s,"0,0",3))
  529.             strcpy(s,s+2);
  530.         p_first = (LINENUM) atol(s);
  531.         while (isdigit(*s)) s++;
  532.         if (*s == ',') {
  533.             for (; *s && !isdigit(*s); s++) ;
  534.             if (!*s)
  535.             malformed ();
  536.             p_ptrn_lines = ((LINENUM)atol(s)) - p_first + 1;
  537.         }
  538.         else if (p_first)
  539.             p_ptrn_lines = 1;
  540.         else {
  541.             p_ptrn_lines = 0;
  542.             p_first = 1;
  543.         }
  544.         p_max = p_ptrn_lines + 6;    /* we need this much at least */
  545.         while (p_max >= hunkmax)
  546.             grow_hunkmax();
  547.         p_max = hunkmax;
  548.         break;
  549.         case '-':
  550.         if (buf[1] == '-') {
  551.             if (repl_beginning ||
  552.             (p_end != p_ptrn_lines + 1 + (p_char[p_end-1] == '\n')))
  553.             {
  554.             if (p_end == 1) {
  555.                 /* `old' lines were omitted - set up to fill */
  556.                 /* them in from 'new' context lines. */
  557.                 p_end = p_ptrn_lines + 1;
  558.                 fillsrc = p_end + 1;
  559.                 filldst = 1;
  560.                 fillcnt = p_ptrn_lines;
  561.             }
  562.             else {
  563.                 if (repl_beginning) {
  564.                 if (repl_could_be_missing){
  565.                     repl_missing = TRUE;
  566.                     goto hunk_done;
  567.                 }
  568.                 fatal3(
  569. "Duplicate \"---\" at line %ld--check line numbers at line %ld.\n",
  570.                     p_input_line, p_hunk_beg + repl_beginning);
  571.                 }
  572.                 else {
  573.                 fatal4(
  574. "%s \"---\" at line %ld--check line numbers at line %ld.\n",
  575.                     (p_end <= p_ptrn_lines
  576.                     ? "Premature"
  577.                     : "Overdue" ),
  578.                     p_input_line, p_hunk_beg);
  579.                 }
  580.             }
  581.             }
  582.             repl_beginning = p_end;
  583.             repl_backtrack_position = ftell(pfp);
  584.             repl_patch_line = p_input_line;
  585.             p_line[p_end] = savestr(buf);
  586.             if (out_of_mem) {
  587.             p_end--;
  588.             return FALSE;
  589.             }
  590.             p_char[p_end] = '=';
  591.             for (s=buf; *s && !isdigit(*s); s++) ;
  592.             if (!*s)
  593.             malformed ();
  594.             p_newfirst = (LINENUM) atol(s);
  595.             while (isdigit(*s)) s++;
  596.             if (*s == ',') {
  597.             for (; *s && !isdigit(*s); s++) ;
  598.             if (!*s)
  599.                 malformed ();
  600.             p_repl_lines = ((LINENUM)atol(s)) - p_newfirst + 1;
  601.             }
  602.             else if (p_newfirst)
  603.             p_repl_lines = 1;
  604.             else {
  605.             p_repl_lines = 0;
  606.             p_newfirst = 1;
  607.             }
  608.             p_max = p_repl_lines + p_end;
  609.             if (p_max > MAXHUNKSIZE)
  610.             fatal4("Hunk too large (%ld lines) at line %ld: %s",
  611.                   p_max, p_input_line, buf);
  612.             while (p_max >= hunkmax)
  613.             grow_hunkmax();
  614.             if (p_repl_lines != ptrn_copiable
  615.              && (p_context != 0 || p_repl_lines != 1))
  616.             repl_could_be_missing = FALSE;
  617.             break;
  618.         }
  619.         goto change_line;
  620.         case '+':  case '!':
  621.         repl_could_be_missing = FALSE;
  622.           change_line:
  623.         if (buf[1] == '\n' && canonicalize)
  624.             strcpy(buf+1," \n");
  625.         if (!isspace(buf[1]) && buf[1] != '>' && buf[1] != '<' &&
  626.           repl_beginning && repl_could_be_missing) {
  627.             repl_missing = TRUE;
  628.             goto hunk_done;
  629.         }
  630.         if (context >= 0) {
  631.             if (context < p_context)
  632.             p_context = context;
  633.             context = -1000;
  634.         }
  635.         p_line[p_end] = savestr(buf+2);
  636.         if (out_of_mem) {
  637.             p_end--;
  638.             return FALSE;
  639.         }
  640.         break;
  641.         case '\t': case '\n':    /* assume the 2 spaces got eaten */
  642.         if (repl_beginning && repl_could_be_missing &&
  643.           (!ptrn_spaces_eaten || diff_type == NEW_CONTEXT_DIFF) ) {
  644.             repl_missing = TRUE;
  645.             goto hunk_done;
  646.         }
  647.         p_line[p_end] = savestr(buf);
  648.         if (out_of_mem) {
  649.             p_end--;
  650.             return FALSE;
  651.         }
  652.         if (p_end != p_ptrn_lines + 1) {
  653.             ptrn_spaces_eaten |= (repl_beginning != 0);
  654.             context++;
  655.             if (!repl_beginning)
  656.             ptrn_copiable++;
  657.             p_char[p_end] = ' ';
  658.         }
  659.         break;
  660.         case ' ':
  661.         if (!isspace(buf[1]) &&
  662.           repl_beginning && repl_could_be_missing) {
  663.             repl_missing = TRUE;
  664.             goto hunk_done;
  665.         }
  666.         context++;
  667.         if (!repl_beginning)
  668.             ptrn_copiable++;
  669.         p_line[p_end] = savestr(buf+2);
  670.         if (out_of_mem) {
  671.             p_end--;
  672.             return FALSE;
  673.         }
  674.         break;
  675.         default:
  676.         if (repl_beginning && repl_could_be_missing) {
  677.             repl_missing = TRUE;
  678.             goto hunk_done;
  679.         }
  680.         malformed ();
  681.         }
  682.         /* set up p_len for strncmp() so we don't have to */
  683.         /* assume null termination */
  684.         if (p_line[p_end])
  685.         p_len[p_end] = strlen(p_line[p_end]);
  686.         else
  687.         p_len[p_end] = 0;
  688.     }
  689.     
  690.     hunk_done:
  691.     if (p_end >=0 && !repl_beginning)
  692.         fatal2("No --- found in patch at line %ld\n", pch_hunk_beg());
  693.  
  694.     if (repl_missing) {
  695.         
  696.         /* reset state back to just after --- */
  697.         p_input_line = repl_patch_line;
  698.         for (p_end--; p_end > repl_beginning; p_end--)
  699.         free(p_line[p_end]);
  700.         Fseek(pfp, repl_backtrack_position, 0);
  701.         
  702.         /* redundant 'new' context lines were omitted - set */
  703.         /* up to fill them in from the old file context */
  704.         if (!p_context && p_repl_lines == 1) {
  705.         p_repl_lines = 0;
  706.         p_max--;
  707.         }
  708.         fillsrc = 1;
  709.         filldst = repl_beginning+1;
  710.         fillcnt = p_repl_lines;
  711.         p_end = p_max;
  712.     }
  713.     else if (!p_context && fillcnt == 1) {
  714.         /* the first hunk was a null hunk with no context */
  715.         /* and we were expecting one line -- fix it up. */
  716.         while (filldst < p_end) {
  717.         p_line[filldst] = p_line[filldst+1];
  718.         p_char[filldst] = p_char[filldst+1];
  719.         p_len[filldst] = p_len[filldst+1];
  720.         filldst++;
  721.         }
  722. /*        repl_beginning--;        /* this doesn't need to be fixed */
  723.         p_end--;
  724.         p_first++;            /* do append rather than insert */
  725.         fillcnt = 0;
  726.         p_ptrn_lines = 0;
  727.     }
  728.  
  729.     if (diff_type == CONTEXT_DIFF &&
  730.       (fillcnt || (p_first > 1 && ptrn_copiable > 2*p_context)) ) {
  731.         if (verbose)
  732.         say4("%s\n%s\n%s\n",
  733. "(Fascinating--this is really a new-style context diff but without",
  734. "the telltale extra asterisks on the *** line that usually indicate",
  735. "the new style...)");
  736.         diff_type = NEW_CONTEXT_DIFF;
  737.     }
  738.     
  739.     /* if there were omitted context lines, fill them in now */
  740.     if (fillcnt) {
  741.         p_bfake = filldst;        /* remember where not to free() */
  742.         p_efake = filldst + fillcnt - 1;
  743.         while (fillcnt-- > 0) {
  744.         while (fillsrc <= p_end && p_char[fillsrc] != ' ')
  745.             fillsrc++;
  746.         if (fillsrc > p_end)
  747.             fatal2("Replacement text or line numbers mangled in hunk at line %ld\n",
  748.             p_hunk_beg);
  749.         p_line[filldst] = p_line[fillsrc];
  750.         p_char[filldst] = p_char[fillsrc];
  751.         p_len[filldst] = p_len[fillsrc];
  752.         fillsrc++; filldst++;
  753.         }
  754.         while (fillsrc <= p_end && fillsrc != repl_beginning &&
  755.           p_char[fillsrc] != ' ')
  756.         fillsrc++;
  757. #ifdef DEBUGGING
  758.         if (debug & 64)
  759.         printf("fillsrc %ld, filldst %ld, rb %ld, e+1 %ld\n",
  760.             fillsrc,filldst,repl_beginning,p_end+1);
  761. #endif
  762.         assert(fillsrc==p_end+1 || fillsrc==repl_beginning);
  763.         assert(filldst==p_end+1 || filldst==repl_beginning);
  764.     }
  765.     }
  766.     else if (diff_type == UNI_DIFF) {
  767.     long line_beginning = ftell(pfp);
  768.                     /* file pos of the current line */
  769.     Reg4 LINENUM fillsrc;        /* index of old lines */
  770.     Reg5 LINENUM filldst;        /* index of new lines */
  771.     char ch;
  772.  
  773.     ret = pgets(buf, sizeof buf, pfp);
  774.     p_input_line++;
  775.     if (ret == Nullch || strnNE(buf, "@@ -", 4)) {
  776.         next_intuit_at(line_beginning,p_input_line);
  777.         return FALSE;
  778.     }
  779.     s = buf+4;
  780.     if (!*s)
  781.         malformed ();
  782.     p_first = (LINENUM) atol(s);
  783.     while (isdigit(*s)) s++;
  784.     if (*s == ',') {
  785.         p_ptrn_lines = (LINENUM) atol(++s);
  786.         while (isdigit(*s)) s++;
  787.     } else
  788.         p_ptrn_lines = 1;
  789.     if (*s == ' ') s++;
  790.     if (*s != '+' || !*++s)
  791.         malformed ();
  792.     p_newfirst = (LINENUM) atol(s);
  793.     while (isdigit(*s)) s++;
  794.     if (*s == ',') {
  795.         p_repl_lines = (LINENUM) atol(++s);
  796.         while (isdigit(*s)) s++;
  797.     } else
  798.         p_repl_lines = 1;
  799.     if (*s == ' ') s++;
  800.     if (*s != '@')
  801.         malformed ();
  802.     if (!p_ptrn_lines)
  803.         p_first++;            /* do append rather than insert */
  804.     p_max = p_ptrn_lines + p_repl_lines + 1;
  805.     while (p_max >= hunkmax)
  806.         grow_hunkmax();
  807.     fillsrc = 1;
  808.     filldst = fillsrc + p_ptrn_lines;
  809.     p_end = filldst + p_repl_lines;
  810.     Sprintf(buf,"*** %ld,%ld ****\n",p_first,p_first + p_ptrn_lines - 1);
  811.     p_line[0] = savestr(buf);
  812.     if (out_of_mem) {
  813.         p_end = -1;
  814.         return FALSE;
  815.     }
  816.     p_char[0] = '*';
  817.         Sprintf(buf,"--- %ld,%ld ----\n",p_newfirst,p_newfirst+p_repl_lines-1);
  818.     p_line[filldst] = savestr(buf);
  819.     if (out_of_mem) {
  820.         p_end = 0;
  821.         return FALSE;
  822.     }
  823.     p_char[filldst++] = '=';
  824.     p_context = 100;
  825.     context = 0;
  826.     p_hunk_beg = p_input_line + 1;
  827.     while (fillsrc <= p_ptrn_lines || filldst <= p_end) {
  828.         line_beginning = ftell(pfp);
  829.         ret = pgets(buf, sizeof buf, pfp);
  830.         p_input_line++;
  831.         if (ret == Nullch) {
  832.         if (p_max - filldst < 3)
  833.             Strcpy(buf, " \n");  /* assume blank lines got chopped */
  834.         else {
  835.             fatal1("Unexpected end of file in patch.\n");
  836.         }
  837.         }
  838.         if (*buf == '\t' || *buf == '\n') {
  839.         ch = ' ';        /* assume the space got eaten */
  840.         s = savestr(buf);
  841.         }
  842.         else {
  843.         ch = *buf;
  844.         s = savestr(buf+1);
  845.         }
  846.         if (out_of_mem) {
  847.         while (--filldst > p_ptrn_lines)
  848.             free(p_line[filldst]);
  849.         p_end = fillsrc-1;
  850.         return FALSE;
  851.         }
  852.         switch (ch) {
  853.         case '-':
  854.         if (fillsrc > p_ptrn_lines) {
  855.             free(s);
  856.             p_end = filldst-1;
  857.             malformed ();
  858.         }
  859.         p_char[fillsrc] = ch;
  860.         p_line[fillsrc] = s;
  861.         p_len[fillsrc++] = strlen(s);
  862.         break;
  863.         case '=':
  864.         ch = ' ';
  865.         /* FALL THROUGH */
  866.         case ' ':
  867.         if (fillsrc > p_ptrn_lines) {
  868.             free(s);
  869.             while (--filldst > p_ptrn_lines)
  870.             free(p_line[filldst]);
  871.             p_end = fillsrc-1;
  872.             malformed ();
  873.         }
  874.         context++;
  875.         p_char[fillsrc] = ch;
  876.         p_line[fillsrc] = s;
  877.         p_len[fillsrc++] = strlen(s);
  878.         s = savestr(s);
  879.         if (out_of_mem) {
  880.             while (--filldst > p_ptrn_lines)
  881.             free(p_line[filldst]);
  882.             p_end = fillsrc-1;
  883.             return FALSE;
  884.         }
  885.         /* FALL THROUGH */
  886.         case '+':
  887.         if (filldst > p_end) {
  888.             free(s);
  889.             while (--filldst > p_ptrn_lines)
  890.             free(p_line[filldst]);
  891.             p_end = fillsrc-1;
  892.             malformed ();
  893.         }
  894.         p_char[filldst] = ch;
  895.         p_line[filldst] = s;
  896.         p_len[filldst++] = strlen(s);
  897.         break;
  898.         default:
  899.         p_end = filldst;
  900.         malformed ();
  901.         }
  902.         if (ch != ' ' && context > 0) {
  903.         if (context < p_context)
  904.             p_context = context;
  905.         context = -1000;
  906.         }
  907.     }/* while */
  908.     }
  909.     else {                /* normal diff--fake it up */
  910.     char hunk_type;
  911.     Reg3 int i;
  912.     LINENUM min, max;
  913.     long line_beginning = ftell(pfp);
  914.  
  915.     p_context = 0;
  916.     ret = pgets(buf, sizeof buf, pfp);
  917.     p_input_line++;
  918.     if (ret == Nullch || !isdigit(*buf)) {
  919.         next_intuit_at(line_beginning,p_input_line);
  920.         return FALSE;
  921.     }
  922.     p_first = (LINENUM)atol(buf);
  923.     for (s=buf; isdigit(*s); s++) ;
  924.     if (*s == ',') {
  925.         p_ptrn_lines = (LINENUM)atol(++s) - p_first + 1;
  926.         while (isdigit(*s)) s++;
  927.     }
  928.     else
  929.         p_ptrn_lines = (*s != 'a');
  930.     hunk_type = *s;
  931.     if (hunk_type == 'a')
  932.         p_first++;            /* do append rather than insert */
  933.     min = (LINENUM)atol(++s);
  934.     for (; isdigit(*s); s++) ;
  935.     if (*s == ',')
  936.         max = (LINENUM)atol(++s);
  937.     else
  938.         max = min;
  939.     if (hunk_type == 'd')
  940.         min++;
  941.     p_end = p_ptrn_lines + 1 + max - min + 1;
  942.     if (p_end > MAXHUNKSIZE)
  943.         fatal4("Hunk too large (%ld lines) at line %ld: %s",
  944.           p_end, p_input_line, buf);
  945.     while (p_end >= hunkmax)
  946.         grow_hunkmax();
  947.     p_newfirst = min;
  948.     p_repl_lines = max - min + 1;
  949.     Sprintf(buf, "*** %ld,%ld\n", p_first, p_first + p_ptrn_lines - 1);
  950.     p_line[0] = savestr(buf);
  951.     if (out_of_mem) {
  952.         p_end = -1;
  953.         return FALSE;
  954.     }
  955.     p_char[0] = '*';
  956.     for (i=1; i<=p_ptrn_lines; i++) {
  957.         ret = pgets(buf, sizeof buf, pfp);
  958.         p_input_line++;
  959.         if (ret == Nullch)
  960.         fatal2("Unexpected end of file in patch at line %ld.\n",
  961.           p_input_line);
  962.         if (*buf != '<')
  963.         fatal2("< expected at line %ld of patch.\n", p_input_line);
  964.         p_line[i] = savestr(buf+2);
  965.         if (out_of_mem) {
  966.         p_end = i-1;
  967.         return FALSE;
  968.         }
  969.         p_len[i] = strlen(p_line[i]);
  970.         p_char[i] = '-';
  971.     }
  972.     if (hunk_type == 'c') {
  973.         ret = pgets(buf, sizeof buf, pfp);
  974.         p_input_line++;
  975.         if (ret == Nullch)
  976.         fatal2("Unexpected end of file in patch at line %ld.\n",
  977.             p_input_line);
  978.         if (*buf != '-')
  979.         fatal2("--- expected at line %ld of patch.\n", p_input_line);
  980.     }
  981.     Sprintf(buf, "--- %ld,%ld\n", min, max);
  982.     p_line[i] = savestr(buf);
  983.     if (out_of_mem) {
  984.         p_end = i-1;
  985.         return FALSE;
  986.     }
  987.     p_char[i] = '=';
  988.     for (i++; i<=p_end; i++) {
  989.         ret = pgets(buf, sizeof buf, pfp);
  990.         p_input_line++;
  991.         if (ret == Nullch)
  992.         fatal2("Unexpected end of file in patch at line %ld.\n",
  993.             p_input_line);
  994.         if (*buf != '>')
  995.         fatal2("> expected at line %ld of patch.\n", p_input_line);
  996.         p_line[i] = savestr(buf+2);
  997.         if (out_of_mem) {
  998.         p_end = i-1;
  999.         return FALSE;
  1000.         }
  1001.         p_len[i] = strlen(p_line[i]);
  1002.         p_char[i] = '+';
  1003.     }
  1004.     }
  1005.     if (reverse)            /* backwards patch? */
  1006.     if (!pch_swap())
  1007.         say1("Not enough memory to swap next hunk!\n");
  1008. #ifdef DEBUGGING
  1009.     if (debug & 2) {
  1010.     int i;
  1011.     char special;
  1012.  
  1013.     for (i=0; i <= p_end; i++) {
  1014.         if (i == p_ptrn_lines)
  1015.         special = '^';
  1016.         else
  1017.         special = ' ';
  1018.         fprintf(stderr, "%3d %c %c %s", i, p_char[i], special, p_line[i]);
  1019.         Fflush(stderr);
  1020.     }
  1021.     }
  1022. #endif
  1023.     if (p_end+1 < hunkmax)    /* paranoia reigns supreme... */
  1024.     p_char[p_end+1] = '^';  /* add a stopper for apply_hunk */
  1025.     return TRUE;
  1026. }
  1027.  
  1028. /* Input a line from the patch file, worrying about indentation. */
  1029.  
  1030. char *
  1031. pgets(bf,sz,fp)
  1032. char *bf;
  1033. int sz;
  1034. FILE *fp;
  1035. {
  1036.     char *ret = fgets(bf, sz, fp);
  1037.     Reg1 char *s;
  1038.     Reg2 int indent = 0;
  1039.  
  1040.     if (p_indent && ret != Nullch) {
  1041.     for (s=buf;
  1042.       indent < p_indent && (*s == ' ' || *s == '\t' || *s == 'X'); s++) {
  1043.         if (*s == '\t')
  1044.         indent += 8 - (indent % 7);
  1045.         else
  1046.         indent++;
  1047.     }
  1048.     if (buf != s)
  1049.         Strcpy(buf, s);
  1050.     }
  1051.     return ret;
  1052. }
  1053.  
  1054. /* Reverse the old and new portions of the current hunk. */
  1055.  
  1056. bool
  1057. pch_swap()
  1058. {
  1059.     char **tp_line;        /* the text of the hunk */
  1060.     short *tp_len;        /* length of each line */
  1061.     char *tp_char;        /* +, -, and ! */
  1062.     Reg1 LINENUM i;
  1063.     Reg2 LINENUM n;
  1064.     bool blankline = FALSE;
  1065.     Reg3 char *s;
  1066.  
  1067.     i = p_first;
  1068.     p_first = p_newfirst;
  1069.     p_newfirst = i;
  1070.     
  1071.     /* make a scratch copy */
  1072.  
  1073.     tp_line = p_line;
  1074.     tp_len = p_len;
  1075.     tp_char = p_char;
  1076.     p_line = Null(char**);    /* force set_hunkmax to allocate again */
  1077.     p_len = Null(short*);
  1078.     p_char = Nullch;
  1079.     set_hunkmax();
  1080.     if (p_line == Null(char**) || p_len == Null(short*) || p_char == Nullch) {
  1081. #ifndef lint
  1082.     if (p_line == Null(char**))
  1083.         free((char*)p_line);
  1084.     p_line = tp_line;
  1085.     if (p_len == Null(short*))
  1086.         free((char*)p_len);
  1087.     p_len = tp_len;
  1088. #endif
  1089.     if (p_char == Nullch)
  1090.         free((char*)p_char);
  1091.     p_char = tp_char;
  1092.     return FALSE;        /* not enough memory to swap hunk! */
  1093.     }
  1094.  
  1095.     /* now turn the new into the old */
  1096.  
  1097.     i = p_ptrn_lines + 1;
  1098.     if (tp_char[i] == '\n') {        /* account for possible blank line */
  1099.     blankline = TRUE;
  1100.     i++;
  1101.     }
  1102.     if (p_efake >= 0) {            /* fix non-freeable ptr range */
  1103.     if (p_efake <= i)
  1104.         n = p_end - i + 1;
  1105.     else
  1106.         n = -i;
  1107.     p_efake += n;
  1108.     p_bfake += n;
  1109.     }
  1110.     for (n=0; i <= p_end; i++,n++) {
  1111.     p_line[n] = tp_line[i];
  1112.     p_char[n] = tp_char[i];
  1113.     if (p_char[n] == '+')
  1114.         p_char[n] = '-';
  1115.     p_len[n] = tp_len[i];
  1116.     }
  1117.     if (blankline) {
  1118.     i = p_ptrn_lines + 1;
  1119.     p_line[n] = tp_line[i];
  1120.     p_char[n] = tp_char[i];
  1121.     p_len[n] = tp_len[i];
  1122.     n++;
  1123.     }
  1124.     assert(p_char[0] == '=');
  1125.     p_char[0] = '*';
  1126.     for (s=p_line[0]; *s; s++)
  1127.     if (*s == '-')
  1128.         *s = '*';
  1129.  
  1130.     /* now turn the old into the new */
  1131.  
  1132.     assert(tp_char[0] == '*');
  1133.     tp_char[0] = '=';
  1134.     for (s=tp_line[0]; *s; s++)
  1135.     if (*s == '*')
  1136.         *s = '-';
  1137.     for (i=0; n <= p_end; i++,n++) {
  1138.     p_line[n] = tp_line[i];
  1139.     p_char[n] = tp_char[i];
  1140.     if (p_char[n] == '-')
  1141.         p_char[n] = '+';
  1142.     p_len[n] = tp_len[i];
  1143.     }
  1144.     assert(i == p_ptrn_lines + 1);
  1145.     i = p_ptrn_lines;
  1146.     p_ptrn_lines = p_repl_lines;
  1147.     p_repl_lines = i;
  1148. #ifndef lint
  1149.     if (tp_line == Null(char**))
  1150.     free((char*)tp_line);
  1151.     if (tp_len == Null(short*))
  1152.     free((char*)tp_len);
  1153. #endif
  1154.     if (tp_char == Nullch)
  1155.     free((char*)tp_char);
  1156.     return TRUE;
  1157. }
  1158.  
  1159. /* Return the specified line position in the old file of the old context. */
  1160.  
  1161. LINENUM
  1162. pch_first()
  1163. {
  1164.     return p_first;
  1165. }
  1166.  
  1167. /* Return the number of lines of old context. */
  1168.  
  1169. LINENUM
  1170. pch_ptrn_lines()
  1171. {
  1172.     return p_ptrn_lines;
  1173. }
  1174.  
  1175. /* Return the probable line position in the new file of the first line. */
  1176.  
  1177. LINENUM
  1178. pch_newfirst()
  1179. {
  1180.     return p_newfirst;
  1181. }
  1182.  
  1183. /* Return the number of lines in the replacement text including context. */
  1184.  
  1185. LINENUM
  1186. pch_repl_lines()
  1187. {
  1188.     return p_repl_lines;
  1189. }
  1190.  
  1191. /* Return the number of lines in the whole hunk. */
  1192.  
  1193. LINENUM
  1194. pch_end()
  1195. {
  1196.     return p_end;
  1197. }
  1198.  
  1199. /* Return the number of context lines before the first changed line. */
  1200.  
  1201. LINENUM
  1202. pch_context()
  1203. {
  1204.     return p_context;
  1205. }
  1206.  
  1207. /* Return the length of a particular patch line. */
  1208.  
  1209. short
  1210. pch_line_len(line)
  1211. LINENUM line;
  1212. {
  1213.     return p_len[line];
  1214. }
  1215.  
  1216. /* Return the control character (+, -, *, !, etc) for a patch line. */
  1217.  
  1218. char
  1219. pch_char(line)
  1220. LINENUM line;
  1221. {
  1222.     return p_char[line];
  1223. }
  1224.  
  1225. /* Return a pointer to a particular patch line. */
  1226.  
  1227. char *
  1228. pfetch(line)
  1229. LINENUM line;
  1230. {
  1231.     return p_line[line];
  1232. }
  1233.  
  1234. /* Return where in the patch file this hunk began, for error messages. */
  1235.  
  1236. LINENUM
  1237. pch_hunk_beg()
  1238. {
  1239.     return p_hunk_beg;
  1240. }
  1241.  
  1242. /* Apply an ed script by feeding ed itself. */
  1243.  
  1244. void
  1245. do_ed_script()
  1246. {
  1247.     Reg1 char *t;
  1248.     Reg2 long beginning_of_this_line;
  1249.     Reg3 bool this_line_is_command = FALSE;
  1250.     Reg4 FILE *pipefp;
  1251.     FILE *popen();
  1252.  
  1253.     if (!skip_rest_of_patch) {
  1254.     Unlink(TMPOUTNAME);
  1255.     copy_file(filearg[0], TMPOUTNAME);
  1256.     if (verbose)
  1257.         Sprintf(buf, "/bin/ed %s", TMPOUTNAME);
  1258.     else
  1259.         Sprintf(buf, "/bin/ed - %s", TMPOUTNAME);
  1260.     pipefp = popen(buf, "w");
  1261.     }
  1262.     for (;;) {
  1263.     beginning_of_this_line = ftell(pfp);
  1264.     if (pgets(buf, sizeof buf, pfp) == Nullch) {
  1265.         next_intuit_at(beginning_of_this_line,p_input_line);
  1266.         break;
  1267.     }
  1268.     p_input_line++;
  1269.     for (t=buf; isdigit(*t) || *t == ','; t++) ;
  1270.     this_line_is_command = (isdigit(*buf) &&
  1271.       (*t == 'd' || *t == 'c' || *t == 'a') );
  1272.     if (this_line_is_command) {
  1273.         if (!skip_rest_of_patch)
  1274.         fputs(buf, pipefp);
  1275.         if (*t != 'd') {
  1276.         while (pgets(buf, sizeof buf, pfp) != Nullch) {
  1277.             p_input_line++;
  1278.             if (!skip_rest_of_patch)
  1279.             fputs(buf, pipefp);
  1280.             if (strEQ(buf, ".\n"))
  1281.             break;
  1282.         }
  1283.         }
  1284.     }
  1285.     else {
  1286.         next_intuit_at(beginning_of_this_line,p_input_line);
  1287.         break;
  1288.     }
  1289.     }
  1290.     if (skip_rest_of_patch)
  1291.     return;
  1292.     fprintf(pipefp, "w\n");
  1293.     fprintf(pipefp, "q\n");
  1294.     Fflush(pipefp);
  1295.     Pclose(pipefp);
  1296.     ignore_signals();
  1297.     if (move_file(TMPOUTNAME, outname) < 0) {
  1298.     toutkeep = TRUE;
  1299.     chmod(TMPOUTNAME, filemode);
  1300.     }
  1301.     else
  1302.     chmod(outname, filemode);
  1303.     set_signals(1);
  1304. }
  1305.